-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4.3.2.3 (g tan)^p (a+b tan)^m (c+d tan)^n.nb
More file actions
4344 lines (4267 loc) · 231 KB
/
4.3.2.3 (g tan)^p (a+b tan)^m (c+d tan)^n.nb
File metadata and controls
4344 lines (4267 loc) · 231 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 7.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 232154, 4335]
NotebookOptionsPosition[ 227101, 4202]
NotebookOutlinePosition[ 228934, 4257]
CellTagsIndexPosition[ 228891, 4254]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[Cell[TextData[{
StyleBox["Rules for integrands of the form ",
FontFamily->"Arial"],
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"g", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "p"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"]}]],
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9,
3.5193415113404875`*^9}, {3.5193513965602303`*^9,
3.519351397420232*^9}, {3.5194037839416766`*^9, 3.5194037847117205`*^9},
3.52105258275843*^9, 3.5210531741726685`*^9, {3.521057461672199*^9,
3.5210574760242243`*^9}, {3.521059881564049*^9, 3.521059886088057*^9}, {
3.5213902158895197`*^9, 3.521390217543123*^9}, {3.521390827878595*^9,
3.521390829376197*^9}, {3.5214688792561245`*^9, 3.521468879443325*^9}, {
3.523320201951167*^9, 3.523320202247567*^9}, {3.5288596764894824`*^9,
3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9,
3.5295115433443794`*^9}, {3.529521412127842*^9, 3.529521414647986*^9}, {
3.529529429975619*^9, 3.529529432955224*^9}, 3.5340074894011116`*^9,
3.5415537711400824`*^9, {3.5415538409034047`*^9, 3.541553841106205*^9}, {
3.5415564120531206`*^9, 3.5415564206955357`*^9},
3.5415565488341613`*^9, {3.5415605631516123`*^9,
3.5415605860836525`*^9}, {3.541561323247347*^9, 3.5415613234501476`*^9},
3.5416162115728135`*^9, {3.5416506679001875`*^9, 3.541650687980216*^9},
3.560533948494043*^9, 3.560538006319724*^9, {3.5605392374714475`*^9,
3.5605392382814484`*^9}, 3.5606250606115856`*^9, 3.5617573869745255`*^9,
3.561757856045182*^9, {3.561761339582559*^9, 3.5617613636025925`*^9}, {
3.5617652519980364`*^9, 3.561765252188037*^9}, {3.561767460571129*^9,
3.5617674608411293`*^9}, 3.5621081762414055`*^9, {3.5621084468550806`*^9,
3.5621084519718895`*^9}, 3.563340740121106*^9},
FontWeight->"Bold"]
}], "None"]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.4965234353062396`*^9, {3.5193214825316973`*^9, 3.5193214852617016`*^9}, {
3.523316399894187*^9, 3.5233164032341914`*^9}, {3.523318350558202*^9,
3.5233183516382036`*^9}, {3.536542725780803*^9, 3.536542725780803*^9}, {
3.5367764878952584`*^9, 3.5367764886452594`*^9}, {3.544322815209103*^9,
3.5443228192963104`*^9}, {3.5450662624913826`*^9, 3.545066292141424*^9}, {
3.545066402271579*^9, 3.5450664054415827`*^9}, {3.5450834884295015`*^9,
3.5450834895895033`*^9}, {3.5454961263762493`*^9,
3.5454961321462574`*^9}, {3.5454963863166127`*^9,
3.5454964580867133`*^9}, {3.545497046127537*^9, 3.545497046127537*^9}, {
3.5454971130676303`*^9, 3.545497136257663*^9}, 3.545610399977621*^9, {
3.546040778592962*^9, 3.546040778592962*^9}, {3.5461052065706367`*^9,
3.5461052249474688`*^9}, {3.546191339879622*^9, 3.5461913430596266`*^9}, {
3.5462141824067917`*^9, 3.5462142145768366`*^9}, {3.5462145455473003`*^9,
3.5462145601073203`*^9}, {3.5463149785974817`*^9,
3.5463149794195285`*^9}, {3.5488738437683954`*^9,
3.5488738699084315`*^9}, {3.5488890647645535`*^9, 3.548889080804576*^9}, {
3.5505951583099127`*^9, 3.5505951620351257`*^9}, {3.5505952613798075`*^9,
3.5505952630869055`*^9}, {3.5535321133435373`*^9,
3.5535321173537664`*^9}, {3.5536175341411576`*^9,
3.5536175352411594`*^9}, {3.55396599671187*^9, 3.55396599862998*^9}, {
3.560190530310161*^9, 3.560190628512334*^9}, {3.5602162723838596`*^9,
3.5602162793138695`*^9}, {3.5606249190913877`*^9, 3.560624924321395*^9}, {
3.5617663419995623`*^9, 3.5617663705796027`*^9}, {3.5617666456099873`*^9,
3.561766656350003*^9}, {3.562107691486154*^9, 3.5621077390350375`*^9}, {
3.5621080165751247`*^9, 3.5621080185719285`*^9}, {3.5621081511877613`*^9,
3.5621081511877613`*^9}, {3.5633407304210925`*^9, 3.563340730891093*^9}, {
3.575852587746504*^9, 3.575852593256511*^9}, {3.575852659996605*^9,
3.575852659996605*^9}, {3.575852743186721*^9, 3.575852743186721*^9}, {
3.57585284254686*^9, 3.575852895956935*^9}, {3.575853026617118*^9,
3.575853038617135*^9}, {3.575853153907296*^9, 3.575853185757341*^9}, {
3.575853290447487*^9, 3.575853290447487*^9}, {3.5758535595198665`*^9,
3.5758535595198665`*^9}, {3.596998393501259*^9, 3.596998397911265*^9}, {
3.605894222337658*^9, 3.605894256080517*^9}, {3.6065875976010056`*^9,
3.6065875976010056`*^9}, {3.624650818787819*^9, 3.62465083278662*^9}, {
3.6301716209591165`*^9, 3.6301716209903164`*^9}, {3.664297208541355*^9,
3.664297215423749*^9}},
TextAlignment->Center,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["X:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"g", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "p"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519247363296011*^9, 3.519247363796012*^9}, 3.519258420199427*^9,
3.5192584863895197`*^9, {3.519320760160028*^9, 3.519320767367241*^9},
3.5193299099191504`*^9, {3.5193300315093203`*^9, 3.519330031709321*^9}, {
3.5193323099968634`*^9, 3.5193324414114943`*^9}, {3.5193327317904043`*^9,
3.519332762148057*^9}, {3.519340455685931*^9, 3.519340463318947*^9},
3.519340635545749*^9, {3.5193422478304834`*^9, 3.519342248704085*^9}, {
3.519342492766513*^9, 3.519342493156514*^9}, {3.519345750301442*^9,
3.5193457505978427`*^9}, 3.519346263464343*^9, {3.519349307658399*^9,
3.519349310965605*^9}, {3.519352294781488*^9, 3.5193522950014887`*^9}, {
3.5194134359455075`*^9, 3.519413446054325*^9}, {3.5194134908888044`*^9,
3.5194134927764077`*^9}, {3.5194141847624226`*^9,
3.5194142323581066`*^9}, {3.5195392931088047`*^9, 3.51953929576081*^9},
3.5195394267074394`*^9, {3.5196773980538087`*^9, 3.5196774025801287`*^9},
3.5214730195115576`*^9, {3.5214731380617237`*^9, 3.521473193531801*^9}, {
3.521474138193124*^9, 3.5214741420331287`*^9}, {3.5214741988932085`*^9,
3.5214742007232113`*^9}, {3.523316621154496*^9, 3.523316621154496*^9}, {
3.523316677984576*^9, 3.523316677984576*^9}, {3.523318504907651*^9,
3.523318504907651*^9}, {3.5233186383938627`*^9, 3.5233186383938627`*^9}, {
3.527359904961545*^9, 3.527359905959947*^9}, {3.5326425332730722`*^9,
3.532642533473073*^9}, {3.5326427746632795`*^9, 3.53264277491288*^9}, {
3.5326584214048853`*^9, 3.5326584216348853`*^9}, {3.5327156387673616`*^9,
3.5327156467558184`*^9}, {3.532715729333542*^9, 3.53271573123365*^9},
3.5328460582169604`*^9, {3.5328745920833416`*^9, 3.5328746294142075`*^9}, {
3.532875067275776*^9, 3.532875067650177*^9}, {3.532875139909504*^9,
3.532875150829523*^9}, {3.537656121233163*^9, 3.537656121443164*^9},
3.540263906712819*^9, {3.5402639787229204`*^9, 3.5402639788829203`*^9}, {
3.540319178473138*^9, 3.5403191846574917`*^9}, {3.540319223359705*^9,
3.5403192458899937`*^9}, {3.5403196532852955`*^9,
3.5403196542853527`*^9}, {3.5404234472634363`*^9,
3.5404234474974365`*^9}, {3.5404266413502464`*^9, 3.540426641755847*^9}, {
3.540427707752519*^9, 3.5404277079553194`*^9}, {3.544238816041692*^9,
3.544238816041692*^9}, {3.544972902988535*^9, 3.544972921755368*^9},
3.5449740982158346`*^9, 3.5449744158947926`*^9, {3.5449778031390886`*^9,
3.5449778251343465`*^9}, 3.544977917559617*^9, 3.5449779627882037`*^9,
3.544978006651713*^9, {3.5449918948372655`*^9, 3.5449919232873054`*^9}, {
3.544991979387384*^9, 3.544991982507388*^9}, 3.544992738708447*^9, {
3.5449930027088165`*^9, 3.5449930028388166`*^9}, 3.545003033111788*^9, {
3.5450034681341515`*^9, 3.545003468352552*^9}, 3.545013424767751*^9, {
3.5451009044378967`*^9, 3.545100915607912*^9}, {3.54541557020794*^9,
3.5454155892399735`*^9}, {3.5454159491014056`*^9, 3.545415954795416*^9},
3.5454160835424414`*^9, {3.545416120483307*^9, 3.545416120483307*^9}, {
3.54541627618718*^9, 3.545416318915655*^9}, {3.545416397555393*^9,
3.5454163977893934`*^9}, {3.5454168214081373`*^9,
3.5454168256513453`*^9}, {3.5454168857582507`*^9,
3.5454169106558943`*^9}, {3.5454170438021283`*^9,
3.5454170438021283`*^9}, {3.5454172983477755`*^9,
3.5454173176294093`*^9}, {3.545417477046089*^9, 3.545417477046089*^9},
3.5454175123801513`*^9, 3.545418173946113*^9, {3.5454188654017277`*^9,
3.545418868272133*^9}, 3.5454190264096107`*^9, {3.5454190831157103`*^9,
3.545419098481737*^9}, {3.545420016893956*^9, 3.5454200195739603`*^9}, {
3.5454302777654276`*^9, 3.5454302809754324`*^9}, 3.5454968581472735`*^9, {
3.5455036760368185`*^9, 3.5455036774768205`*^9}, {3.5455949658741317`*^9,
3.5455949660641317`*^9}, {3.545719824274483*^9, 3.5457198244494934`*^9}, {
3.5460594494138556`*^9, 3.5460594499878883`*^9}, {3.5461053035404067`*^9,
3.546105319717635*^9}, {3.5461053579845023`*^9, 3.546105358920504*^9}, {
3.546124698953128*^9, 3.546124699423128*^9}, {3.5461916295600276`*^9,
3.5461916301100283`*^9}, {3.5461991707505856`*^9, 3.546199171290586*^9},
3.546214242416876*^9, {3.5463150473254128`*^9, 3.5463150476074286`*^9}, {
3.546315272154272*^9, 3.5463152723902855`*^9}, {3.5463161576219177`*^9,
3.54631615975904*^9}, {3.5481806240722923`*^9, 3.548180624337493*^9}, {
3.5626093946015043`*^9, 3.562609394791505*^9}, {3.56263431400762*^9,
3.5626343142476206`*^9}, {3.5832799070559163`*^9,
3.5832799073359165`*^9}, {3.583298533747108*^9, 3.58329853485471*^9}, {
3.5832991295745544`*^9, 3.5832991300113554`*^9}, {3.583342184281198*^9,
3.5833421856312*^9}, {3.583368284889328*^9, 3.583368285319329*^9}, {
3.583774043252548*^9, 3.583774043542548*^9}, {3.5837877386068306`*^9,
3.583787738836831*^9}, 3.596942866565734*^9, 3.6059871329070673`*^9, {
3.6059872563272443`*^9, 3.605987256867245*^9}, 3.606324825590423*^9,
3.606703566563154*^9, 3.607550759375228*^9, {3.6260255520706353`*^9,
3.626025573536273*^9}, {3.626025655561217*^9, 3.626025658525222*^9}, {
3.6301716210059166`*^9, 3.6301716210215163`*^9}, {3.664297226055357*^9,
3.664297234374833*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell["Rule:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, 3.496451213764926*^9,
3.496528833243797*^9, {3.4975777080419827`*^9, 3.4975777244120054`*^9}, {
3.4975778737222147`*^9, 3.4975778945722437`*^9}, {3.4976396822792068`*^9,
3.49763968986082*^9}, {3.497639771433363*^9, 3.49763978104298*^9}, {
3.4976638984111347`*^9, 3.4976639153215647`*^9}, {3.4976645939383564`*^9,
3.497664598805565*^9}, {3.4976646480080514`*^9, 3.4976646992229414`*^9}, {
3.4976647966763124`*^9, 3.497664832415975*^9}, 3.497664903037299*^9, {
3.4986779242986293`*^9, 3.498677947778662*^9}, {3.499179738750054*^9,
3.499179740902858*^9}, {3.499213316063504*^9, 3.4992133345435305`*^9}, {
3.499358051967739*^9, 3.4993580717017736`*^9}, {3.4993638312082148`*^9,
3.499363839028226*^9}, {3.499368533262825*^9, 3.499368534762827*^9}, {
3.500319714354707*^9, 3.500319719674714*^9}, {3.500321207536797*^9,
3.5003212188668127`*^9}, {3.501358653573163*^9, 3.5013586559531665`*^9}, {
3.502678432393256*^9, 3.5026784351732597`*^9}, {3.5027657117315207`*^9,
3.5027657146955256`*^9}, {3.5027672159617634`*^9,
3.5027672159617634`*^9}, {3.503549413750845*^9, 3.5035494378508787`*^9}, {
3.5040286533797517`*^9, 3.5040286542689533`*^9}, 3.504031878337816*^9,
3.5043107701173162`*^9, {3.509475086194587*^9, 3.509475086194587*^9},
3.509553389797927*^9, 3.5095539171114664`*^9, {3.509822121353137*^9,
3.50982213066315*^9}, {3.510174534928236*^9, 3.510174534928236*^9}, {
3.510179775418688*^9, 3.510179780270296*^9}, {3.5117202775835953`*^9,
3.5117202775835953`*^9}, {3.54541720407681*^9, 3.54541720407681*^9}, {
3.545418766528754*^9, 3.5454187683227572`*^9}, {3.545430147155245*^9,
3.5454301475252457`*^9}, {3.5461230523008223`*^9,
3.5461230523008223`*^9}, {3.546123177490998*^9, 3.5461231783909993`*^9}, {
3.546213260725501*^9, 3.546213260725501*^9}, {3.546535854979783*^9,
3.546535854979783*^9}, {3.546568971942576*^9, 3.546568971942576*^9}, {
3.5481798372101097`*^9, 3.5481798372101097`*^9}, {3.548179951948312*^9,
3.548179951948312*^9}, {3.605986470548625*^9, 3.605986472788628*^9}, {
3.6059865053386736`*^9, 3.6059865053386736`*^9}, {3.606689467762175*^9,
3.606689467762175*^9}, {3.607550802455288*^9, 3.607550802455288*^9},
3.626025635109581*^9}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"g", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "p"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"g", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "p"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, {3.496441851501421*^9,
3.496441872881451*^9}, {3.496528916553913*^9, 3.4965289272239285`*^9}, {
3.497576165747217*^9, 3.4975761801372375`*^9}, {3.497577761382057*^9,
3.4975777938921027`*^9}, 3.49763959300025*^9, 3.497639634480723*^9,
3.4976398417426867`*^9, {3.49766381031778*^9, 3.4976638350282235`*^9}, {
3.49766435104593*^9, 3.497664390373599*^9}, {3.4976647278489914`*^9,
3.4976647419046164`*^9}, {3.497664869980841*^9, 3.497664887437272*^9}, {
3.498761171082196*^9, 3.498761171082196*^9}, {3.4987645684369526`*^9,
3.4987646442070584`*^9}, {3.49883740188522*^9, 3.4988375207310295`*^9}, {
3.498837939529365*^9, 3.498837958467798*^9}, 3.498875518717125*^9, {
3.4991794250335026`*^9, 3.499179452879552*^9}, {3.4991796787211485`*^9,
3.499179681529153*^9}, {3.4991961982482667`*^9, 3.4991962392763386`*^9}, {
3.499196653100665*^9, 3.4991966955639396`*^9}, {3.499197135282312*^9,
3.499197176918785*^9}, {3.499197690444487*^9, 3.499197694048094*^9}, {
3.499212356332161*^9, 3.4992123865622034`*^9}, {3.499212421412252*^9,
3.499212423032254*^9}, {3.4992126233625345`*^9, 3.499212696332637*^9}, {
3.499357348905704*^9, 3.4993574380910606`*^9}, {3.4993588274861555`*^9,
3.4993589039462624`*^9}, {3.499359110096551*^9, 3.4993591137965565`*^9}, {
3.4993752824791145`*^9, 3.4993752993591385`*^9}, {3.4994041904561324`*^9,
3.4994041927361355`*^9}, {3.499404246686211*^9, 3.499404275156251*^9}, {
3.499404742476905*^9, 3.4994047525269194`*^9}, {3.500317978262911*^9,
3.500317979417313*^9}, 3.500318137887991*^9, {3.5030149938276834`*^9,
3.5030149992252927`*^9}, 3.505344641363784*^9, {3.505344693023856*^9,
3.5053447149738874`*^9}, 3.5053535459551945`*^9, {3.5094696268243294`*^9,
3.509469698805446*^9}, {3.509469791674758*^9, 3.509469802752392*^9}, {
3.509469914234768*^9, 3.5094699164558954`*^9}, {3.509470445456152*^9,
3.509470483604334*^9}, {3.5094706454305897`*^9, 3.50947066641179*^9}, {
3.5094707559529114`*^9, 3.5094707698497066`*^9}, 3.5094708527324467`*^9, {
3.5094710367959747`*^9, 3.5094710383620644`*^9}, 3.5094711873785877`*^9,
3.5094801966418877`*^9, {3.5095014754320154`*^9, 3.5095014757128158`*^9}, {
3.509501663985547*^9, 3.5095016805839767`*^9}, {3.509828555552424*^9,
3.5098285973424826`*^9}, {3.509828656532565*^9, 3.509828698932625*^9}, {
3.5098287432526865`*^9, 3.5098287837327433`*^9}, {3.5101746549548464`*^9,
3.5101746581060524`*^9}, {3.510174939280946*^9, 3.510174959092981*^9}, {
3.5151682145645065`*^9, 3.5151682184145117`*^9}, {3.5454191112425594`*^9,
3.545419113769764*^9}, {3.5461244478127766`*^9, 3.54612445038278*^9},
3.5969428687185373`*^9, 3.5969429671235104`*^9, {3.605987154242098*^9,
3.605987156877102*^9}, {3.626025665280034*^9, 3.6260256684624395`*^9}, {
3.6301716210371165`*^9, 3.6301716210839167`*^9}, {3.664297248612647*^9,
3.6642972521108475`*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"g_.", "*",
RowBox[{"tan", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}], ")"}], "^", "p_."}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"a_", "+",
RowBox[{"b_.", "*",
RowBox[{"tan", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}]}], ")"}], "^", "m_"}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"c_", "+",
RowBox[{"d_.", "*",
RowBox[{"tan", "[",
RowBox[{"e_.", "+",
RowBox[{"f_.", "*", "x_"}]}], "]"}]}]}], ")"}], "^", "n_"}]}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{"Unintegrable", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"g", "*",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}], ")"}], "^", "p"}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}]}], ")"}], "^", "m"}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", "*",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", "*", "x"}]}], "]"}]}]}], ")"}], "^", "n"}]}], ",",
"x"}], "]"}], " ", "/;", "\n",
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{
"a", ",", "b", ",", "c", ",", "d", ",", "e", ",", "f", ",", "g", ",",
"m", ",", "n", ",", "p"}], "}"}], ",", "x"}], "]"}]}]}]], "Code",
CellChangeTimes->{{3.494097279728842*^9, 3.494097309778884*^9},
3.496441834031397*^9, 3.496442095051762*^9, 3.496528791863739*^9,
3.496528888643874*^9, 3.497575939976901*^9, 3.4975761146971455`*^9,
3.4975775509417624`*^9, 3.497577752792045*^9, 3.4975834953320856`*^9,
3.4976395861674376`*^9, 3.4976397432129135`*^9, 3.4976633737510133`*^9,
3.497663791067346*^9, 3.497664242469739*^9, {3.49766439658241*^9,
3.497664398470013*^9}, 3.497664769079864*^9, {3.4986774515679674`*^9,
3.49867746046798*^9}, {3.498761171092196*^9, 3.4987611711021957`*^9}, {
3.4987647642072268`*^9, 3.4987647797772484`*^9}, {3.4987662584793186`*^9,
3.498766258909319*^9}, {3.4987729599087005`*^9, 3.4987729607687016`*^9},
3.4988018581019883`*^9, {3.499179579551774*^9, 3.4991796094414263`*^9}, {
3.499179689157567*^9, 3.499179691637971*^9}, {3.4991797663621025`*^9,
3.499179767407304*^9}, {3.499179868308281*^9, 3.499179869805884*^9},
3.499180259000168*^9, {3.499197395157969*^9, 3.499197401054779*^9}, {
3.499212499112361*^9, 3.49921251269238*^9}, {3.499212715522664*^9,
3.4992127382126956`*^9}, {3.4992128038327875`*^9,
3.4992128061327906`*^9}, {3.499213982604438*^9, 3.499214025174497*^9}, {
3.499214066304555*^9, 3.499214072114563*^9}, {3.4992145411652193`*^9,
3.4992145475152283`*^9}, 3.4993574899767523`*^9, {3.4993576909831047`*^9,
3.4993577157403483`*^9}, 3.4993578086385117`*^9, {3.4993579390391407`*^9,
3.4993579651067867`*^9}, {3.4993580774113836`*^9, 3.4993580785501857`*^9},
3.499358991716386*^9, {3.4993590256364326`*^9, 3.499359034196445*^9},
3.499359158156618*^9, {3.499359230066719*^9, 3.4993592406667337`*^9}, {
3.499363855658249*^9, 3.499363864218261*^9}, {3.4993753165091624`*^9,
3.499375327739178*^9}, {3.500317979448513*^9, 3.500317979729314*^9}, {
3.500318356413175*^9, 3.5003183706092*^9}, {3.500319044263768*^9,
3.5003190515337787`*^9}, {3.500321448217134*^9, 3.5003214542871428`*^9}, {
3.500432003250804*^9, 3.5004320043278656`*^9}, {3.5010431659740324`*^9,
3.5010431675511227`*^9}, 3.50267709922139*^9, {3.502677262251618*^9,
3.502677280331643*^9}, 3.5027670673403025`*^9, {3.5030150059333043`*^9,
3.5030150148565197`*^9}, {3.503071953798221*^9, 3.5030719623082333`*^9}, {
3.5035497609313307`*^9, 3.5035497734613485`*^9}, 3.503876194868781*^9, {
3.504156461196662*^9, 3.5041564626786647`*^9}, 3.505344641373784*^9, {
3.5053446930538564`*^9, 3.505344714983887*^9}, 3.5053535482551975`*^9, {
3.5094719943757453`*^9, 3.509471999082014*^9}, {3.5094721711418557`*^9,
3.5094721778162374`*^9}, {3.50947240515324*^9, 3.509472413765733*^9},
3.5094733026345735`*^9, {3.509475150960292*^9, 3.5094751544394903`*^9}, {
3.509501480299224*^9, 3.5095014852600327`*^9}, {3.5095016962152033`*^9,
3.5095017075096235`*^9}, 3.5098286293025274`*^9, {3.509828898462904*^9,
3.5098289238329396`*^9}, {3.5098337006312838`*^9, 3.509833704827691*^9},
3.5101745819155183`*^9, {3.510174660804857*^9, 3.5101746635348616`*^9}, {
3.5101749657229924`*^9, 3.510174983897024*^9}, 3.510179441609301*^9,
3.510438752973152*^9, 3.511227636250307*^9, 3.5114939922953677`*^9,
3.511806385340789*^9, 3.514403488313138*^9, {3.515197880917452*^9,
3.5151978814790525`*^9}, {3.515978349796089*^9, 3.5159783519332933`*^9},
3.5166675221732535`*^9, 3.5168206559364614`*^9, 3.5168238870016394`*^9,
3.5170754944729843`*^9, {3.517075645023195*^9, 3.5170756457431955`*^9},
3.541090454410923*^9, 3.541090537708269*^9, 3.541090593571967*^9, {
3.5419774852844076`*^9, 3.541977492824418*^9}, {3.545418900283389*^9,
3.5454189017497916`*^9}, {3.545419127232588*^9, 3.54541915136583*^9},
3.545419192393902*^9, {3.5454192425703907`*^9, 3.545419243584392*^9}, {
3.54542002674397*^9, 3.545420034433981*^9}, {3.5454210176773586`*^9,
3.545421021277364*^9}, {3.5454217048903217`*^9, 3.5454217071303253`*^9}, {
3.5454217644704056`*^9, 3.5454217689004116`*^9}, {3.5455309252556715`*^9,
3.5455309319756804`*^9}, {3.5455950324942245`*^9,
3.5455950354242287`*^9}, {3.546105998684428*^9, 3.5461060230204706`*^9},
3.5461060987274036`*^9, {3.5461064997885084`*^9, 3.546106521644147*^9},
3.5465418895757313`*^9, {3.548015040442136*^9, 3.548015043912141*^9}, {
3.5969428715109425`*^9, 3.596942879794557*^9}, {3.5969429187010255`*^9,
3.596942930463446*^9}, {3.6059871677271175`*^9, 3.605987210617179*^9},
3.6075507855352645`*^9, {3.6075508819353995`*^9, 3.607550883515402*^9}, {
3.626025621989958*^9, 3.6260256461856003`*^9}, {3.626025700411296*^9,
3.626025711253315*^9}, 3.626570927987018*^9, 3.626570968359889*^9,
3.6266603296313252`*^9, {3.630171621099517*^9, 3.63017163693736*^9}, {
3.6642972562750854`*^9, 3.6642972603233175`*^9}, {3.6642973193666945`*^9,
3.6642973245139885`*^9}, {3.6642973584839315`*^9,
3.6642973651883154`*^9}, {3.6643004698368907`*^9, 3.6643004752061977`*^9},
3.7123375734951277`*^9, 3.7155494282376604`*^9},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[BoxData[""], "Input",
CellChangeTimes->{{3.6262285618785048`*^9, 3.6262285629185057`*^9}}],
Cell[BoxData[Cell[TextData[{
StyleBox["Rules for integrands of the form ",
FontFamily->"Arial"],
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"g", " ",
SuperscriptBox[
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}], "q"]}], ")"}], "p"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"]}]],
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9,
3.5193415113404875`*^9}, {3.5193513965602303`*^9,
3.519351397420232*^9}, {3.5194037839416766`*^9, 3.5194037847117205`*^9},
3.52105258275843*^9, 3.5210531741726685`*^9, {3.521057461672199*^9,
3.5210574760242243`*^9}, {3.521059881564049*^9, 3.521059886088057*^9}, {
3.5213902158895197`*^9, 3.521390217543123*^9}, {3.521390827878595*^9,
3.521390829376197*^9}, {3.5214688792561245`*^9, 3.521468879443325*^9}, {
3.523320201951167*^9, 3.523320202247567*^9}, {3.5288596764894824`*^9,
3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9,
3.5295115433443794`*^9}, {3.529521412127842*^9, 3.529521414647986*^9}, {
3.529529429975619*^9, 3.529529432955224*^9}, 3.5340074894011116`*^9,
3.5415537711400824`*^9, {3.5415538409034047`*^9, 3.541553841106205*^9}, {
3.5415564120531206`*^9, 3.5415564206955357`*^9},
3.5415565488341613`*^9, {3.5415605631516123`*^9,
3.5415605860836525`*^9}, {3.541561323247347*^9, 3.5415613234501476`*^9},
3.5416162115728135`*^9, {3.5416506679001875`*^9, 3.541650687980216*^9},
3.560533948494043*^9, 3.560538006319724*^9, {3.5605392374714475`*^9,
3.5605392382814484`*^9}, 3.5606250606115856`*^9, 3.5617573869745255`*^9,
3.561757856045182*^9, {3.561761339582559*^9, 3.5617613636025925`*^9}, {
3.5617652519980364`*^9, 3.561765252188037*^9}, {3.561767460571129*^9,
3.5617674608411293`*^9}, 3.5621081762414055`*^9, {3.5621084468550806`*^9,
3.5621084519718895`*^9}, 3.563340740121106*^9},
FontWeight->"Bold"]
}], "None"]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.4965234353062396`*^9, {3.5193214825316973`*^9, 3.5193214852617016`*^9}, {
3.523316399894187*^9, 3.5233164032341914`*^9}, {3.523318350558202*^9,
3.5233183516382036`*^9}, {3.536542725780803*^9, 3.536542725780803*^9}, {
3.5367764878952584`*^9, 3.5367764886452594`*^9}, {3.544322815209103*^9,
3.5443228192963104`*^9}, {3.5450662624913826`*^9, 3.545066292141424*^9}, {
3.545066402271579*^9, 3.5450664054415827`*^9}, {3.5450834884295015`*^9,
3.5450834895895033`*^9}, {3.5454961263762493`*^9,
3.5454961321462574`*^9}, {3.5454963863166127`*^9,
3.5454964580867133`*^9}, {3.545497046127537*^9, 3.545497046127537*^9}, {
3.5454971130676303`*^9, 3.545497136257663*^9}, 3.545610399977621*^9, {
3.546040778592962*^9, 3.546040778592962*^9}, {3.5461052065706367`*^9,
3.5461052249474688`*^9}, {3.546191339879622*^9, 3.5461913430596266`*^9}, {
3.5462141824067917`*^9, 3.5462142145768366`*^9}, {3.5462145455473003`*^9,
3.5462145601073203`*^9}, {3.5463149785974817`*^9,
3.5463149794195285`*^9}, {3.5488738437683954`*^9,
3.5488738699084315`*^9}, {3.5488890647645535`*^9, 3.548889080804576*^9}, {
3.5505951583099127`*^9, 3.5505951620351257`*^9}, {3.5505952613798075`*^9,
3.5505952630869055`*^9}, {3.5535321133435373`*^9,
3.5535321173537664`*^9}, {3.5536175341411576`*^9,
3.5536175352411594`*^9}, {3.55396599671187*^9, 3.55396599862998*^9}, {
3.560190530310161*^9, 3.560190628512334*^9}, {3.5602162723838596`*^9,
3.5602162793138695`*^9}, {3.5606249190913877`*^9, 3.560624924321395*^9}, {
3.5617663419995623`*^9, 3.5617663705796027`*^9}, {3.5617666456099873`*^9,
3.561766656350003*^9}, {3.562107691486154*^9, 3.5621077390350375`*^9}, {
3.5621080165751247`*^9, 3.5621080185719285`*^9}, {3.5621081511877613`*^9,
3.5621081511877613`*^9}, {3.5633407304210925`*^9, 3.563340730891093*^9}, {
3.575852587746504*^9, 3.575852593256511*^9}, {3.575852659996605*^9,
3.575852659996605*^9}, {3.575852743186721*^9, 3.575852743186721*^9}, {
3.57585284254686*^9, 3.575852895956935*^9}, {3.575853026617118*^9,
3.575853038617135*^9}, {3.575853153907296*^9, 3.575853185757341*^9}, {
3.575853290447487*^9, 3.575853290447487*^9}, {3.59677884868538*^9,
3.59677885607539*^9}, {3.6058945381758122`*^9, 3.6058945724490724`*^9}, {
3.6080751006970787`*^9, 3.6080751257671137`*^9}, {3.609608817980541*^9,
3.609608817980541*^9}, {3.6096442951947145`*^9, 3.6096442951947145`*^9}, {
3.609995115128792*^9, 3.609995115128792*^9}, {3.6260223509138126`*^9,
3.6260223634718347`*^9}, {3.626228567618512*^9, 3.6262285683085136`*^9}, {
3.626228701946702*^9, 3.6262287087767115`*^9}, {3.6262287508617716`*^9,
3.6262287514017725`*^9}, {3.6301688347711334`*^9,
3.6301688380315394`*^9}, {3.630171621130717*^9, 3.630171621130717*^9}, {
3.6301716815410414`*^9, 3.630171681556641*^9}, {3.664297391082796*^9,
3.664297402287437*^9}},
TextAlignment->Center,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"g", " ",
RowBox[{"Cot", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "p"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{"p", "\[NotElement]", "\[DoubleStruckCapitalZ]"}], " ",
"\[And]", " ",
RowBox[{"m", "\[Element]", "\[DoubleStruckCapitalZ]"}], " ", "\[And]",
" ",
RowBox[{"n", "\[Element]", "\[DoubleStruckCapitalZ]"}]}]]]],
"None"]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.4965117206885777`*^9, 3.5192471175756674`*^9, {3.5192587973599553`*^9,
3.5192588081399703`*^9}, {3.519321495105319*^9, 3.5193214991925263`*^9},
3.5193247857072587`*^9, {3.5194051897010813`*^9, 3.5194051902791147`*^9}, {
3.5194055551249824`*^9, 3.5194055708408813`*^9}, {3.519405711316916*^9,
3.51940572904193*^9}, {3.519410772192028*^9, 3.5194107776364374`*^9}, {
3.519413782484516*^9, 3.519413782827717*^9}, {3.519767588664174*^9,
3.519767611128214*^9}, {3.5197937941314034`*^9, 3.519793794568204*^9}, {
3.5197947626591043`*^9, 3.519794764749508*^9}, {3.519794865354085*^9,
3.519794874355301*^9}, {3.523218063086026*^9, 3.523218070356036*^9}, {
3.523316514684347*^9, 3.523316514684347*^9}, {3.5233165475343933`*^9,
3.5233165475343933`*^9}, {3.5233184331871357`*^9,
3.5233184334271364`*^9}, {3.5273599103435545`*^9, 3.527359910608755*^9}, {
3.5326424241029196`*^9, 3.53264242435292*^9}, {3.5326584126048727`*^9,
3.532658412794873*^9}, {3.532726454021428*^9, 3.5327264542814283`*^9}, {
3.5327554047263184`*^9, 3.532755404993334*^9}, {3.532798666112293*^9,
3.532798676322307*^9}, {3.5328778343810363`*^9, 3.5328778343810363`*^9},
3.5330758294771795`*^9, {3.5330827570868783`*^9, 3.533082757336879*^9}, {
3.534975097668671*^9, 3.534975097888672*^9}, {3.536863459221404*^9,
3.536863459439804*^9}, {3.540264711953947*^9, 3.5402647253239655`*^9}, {
3.540264783504047*^9, 3.540264783504047*^9}, {3.540502117527218*^9,
3.540502117997218*^9}, {3.540502551737826*^9, 3.540502551937826*^9}, {
3.5449015667548094`*^9, 3.5449015920048447`*^9}, {3.544901714065016*^9,
3.544901727955035*^9}, 3.5449017981251335`*^9, 3.546020159503343*^9,
3.5460203600136237`*^9, {3.5460310752738647`*^9, 3.546031077643868*^9}, {
3.546031126313936*^9, 3.5460311265239363`*^9}, 3.546801688439275*^9, {
3.546801866581126*^9, 3.5468018676511273`*^9}, {3.546802184066374*^9,
3.5468021843363743`*^9}, 3.5468025388912745`*^9, {3.5468028870629654`*^9,
3.546802888792968*^9}, {3.5468203931730013`*^9, 3.5468204595030947`*^9},
3.5468206697133884`*^9, {3.5468209271537495`*^9, 3.5468209271537495`*^9}, {
3.546822281335645*^9, 3.5468222849556503`*^9}, 3.5468235641274414`*^9,
3.5468258137805905`*^9, {3.5468258607206564`*^9, 3.5468258632806597`*^9}, {
3.546826290091257*^9, 3.5468262923612604`*^9}, {3.546826571041651*^9,
3.546826574901656*^9}, {3.548171489157048*^9, 3.548171502463872*^9}, {
3.548175565334606*^9, 3.548175565334606*^9}, {3.578589249409753*^9,
3.578589249619754*^9}, 3.5838055360974493`*^9, 3.583805660727624*^9, {
3.583805707247689*^9, 3.583805707247689*^9}, 3.5970044709597864`*^9, {
3.606352540822091*^9, 3.6063525564621134`*^9}, {3.60635274711238*^9,
3.606352749722384*^9}, {3.6063536116035905`*^9, 3.606353629223615*^9}, {
3.6064061585847015`*^9, 3.606406160984705*^9}, {3.6064066957654533`*^9,
3.6064067278354983`*^9}, {3.606406798225597*^9, 3.606406798225597*^9},
3.6064170699399776`*^9, {3.6064171476100864`*^9, 3.6064171540000954`*^9},
3.6065877185111747`*^9, {3.6069296822972994`*^9, 3.606929694987317*^9}, {
3.609209703619203*^9, 3.6092097324392433`*^9}, {3.6092098217793684`*^9,
3.609209849339407*^9}, 3.60921000847963*^9, {3.609210214839919*^9,
3.609210217029922*^9}, {3.6092104297202196`*^9, 3.6092104310802217`*^9}, {
3.609215060718704*^9, 3.609215076928727*^9}, {3.6100494427274294`*^9,
3.610049463297458*^9}, 3.610070551558385*^9, {3.6100707471686587`*^9,
3.6100707473786592`*^9}, {3.610160342665924*^9, 3.6101603759759707`*^9}, {
3.623792179959832*^9, 3.623792179959832*^9}, {3.623792338932912*^9,
3.623792338932912*^9}, {3.6237925174078255`*^9, 3.6237925174078255`*^9}, {
3.623858885271776*^9, 3.623858885531777*^9}, {3.623860762659764*^9,
3.6238607846737957`*^9}, {3.623878845749161*^9, 3.6238788465391617`*^9},
3.623879012967399*^9, {3.6240408571396933`*^9, 3.6240408912507415`*^9}, {
3.6240421282418795`*^9, 3.6240421412318974`*^9}, {3.624042251850055*^9,
3.6240422661670756`*^9}, {3.6240433071157446`*^9,
3.6240433071157446`*^9}, {3.624044579520734*^9, 3.6240446068187723`*^9}, {
3.6240461060662766`*^9, 3.6240461060662766`*^9}, {3.624046386622675*^9,
3.624046386622675*^9}, {3.624056237432206*^9, 3.624056237432206*^9}, {
3.6240567038928595`*^9, 3.624056704622861*^9}, {3.6252629362370358`*^9,
3.6252629723270864`*^9}, {3.626023449826543*^9, 3.626023461932164*^9}, {
3.626042362326043*^9, 3.6260423626460433`*^9}, {3.626209498235474*^9,
3.626209499405476*^9}, {3.626210483325805*^9, 3.626210484963808*^9}, {
3.62621583070361*^9, 3.6262158326068134`*^9}, {3.6262286142615786`*^9,
3.6262286255555944`*^9}, {3.626228668370655*^9, 3.6262286745806637`*^9}, {
3.6262287541917763`*^9, 3.626228754641777*^9}, {3.626228932402028*^9,
3.626228932602029*^9}, 3.626229266799502*^9, {3.6301674528877516`*^9,
3.6301674682235785`*^9}, {3.630167733162249*^9, 3.6301677581886935`*^9},
3.630168466511684*^9, 3.630169154321436*^9, 3.6301716211619167`*^9, {
3.630171681587841*^9, 3.630171681603441*^9}, 3.664297436042368*^9, {
3.6642975679029093`*^9, 3.6642975773454494`*^9}, {3.6642984395767665`*^9,
3.664298440374812*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Algebraic normalization", "Subsubsection",
CellChangeTimes->{
3.479686820458373*^9, {3.490657960122612*^9, 3.49065796095366*^9},
3.4964414996009283`*^9, {3.4964447088058186`*^9, 3.4964447131058245`*^9},
3.496528844063812*^9, 3.497575950496916*^9, 3.4975775797018027`*^9,
3.497639496888481*^9, 3.4976636252234545`*^9, 3.497665167504564*^9, {
3.561226054703641*^9, 3.5612260578536453`*^9}, {3.564014697112665*^9,
3.5640146992226686`*^9}, {3.564014729972711*^9, 3.564014741602728*^9},
3.564154158611103*^9, {3.6252549507211504`*^9, 3.6252549526711535`*^9},
3.6254347678314524`*^9}],
Cell[TextData[{
"Basis:",
" If ",
Cell[BoxData[
RowBox[{
RowBox[{"m", "\[Element]", "\[DoubleStruckCapitalZ]"}], " ", "\[And]", " ",
RowBox[{"n", "\[Element]", "\[DoubleStruckCapitalZ]"}]}]]],
", then",
" ",
Cell[BoxData[
RowBox[{
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[", "z", "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ",
RowBox[{"Tan", "[", "z", "]"}]}]}], ")"}], "n"]}], "\[Equal]",
FractionBox[
RowBox[{
SuperscriptBox["g",
RowBox[{"m", "+", "n"}]], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", "+",
RowBox[{"a", " ",
RowBox[{"Cot", "[", "z", "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", "+",
RowBox[{"c", " ",
RowBox[{"Cot", "[", "z", "]"}]}]}], ")"}], "n"]}],
SuperscriptBox[
RowBox[{"(",
RowBox[{"g", " ",
RowBox[{"Cot", "[", "z", "]"}]}], ")"}],
RowBox[{"m", "+", "n"}]]]}]],
CellChangeTimes->{{3.6252550900937953`*^9, 3.6252551495650997`*^9}}]
}], "Subsubsection",
CellChangeTimes->{
3.479686820458373*^9, {3.490657960122612*^9, 3.49065796095366*^9},
3.4964414996009283`*^9, {3.4964447088058186`*^9, 3.4964447131058245`*^9},
3.496528844063812*^9, 3.497575950496916*^9, 3.4975775797018027`*^9,
3.497639496888481*^9, 3.4976636252234545`*^9, 3.497665167504564*^9, {
3.561226054703641*^9, 3.5612260578536453`*^9}, {3.564014697112665*^9,
3.5640146992226686`*^9}, {3.564014729972711*^9, 3.564014741602728*^9},
3.564154158611103*^9, {3.6252549507211504`*^9, 3.6252549526711535`*^9}, {
3.6252551596895175`*^9, 3.62525516669593*^9}, {3.6260264917338853`*^9,
3.6260264917338853`*^9}, {3.630169346115574*^9, 3.630169346115574*^9}, {
3.630171621193117*^9, 3.630171621193117*^9}, {3.630171681603441*^9,
3.630171681603441*^9}, {3.664297779604018*^9, 3.664297810316775*^9}, {
3.6642980350306277`*^9, 3.6642980350306277`*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
RowBox[{"p", "\[NotElement]", "\[DoubleStruckCapitalZ]"}], " ", "\[And]",
" ",
RowBox[{"m", "\[Element]", "\[DoubleStruckCapitalZ]"}], " ", "\[And]", " ",
RowBox[{"n", "\[Element]", "\[DoubleStruckCapitalZ]"}]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.4964417379912624`*^9, 3.4964417471112747`*^9}, {
3.496441910111503*^9, 3.4964419275315275`*^9}, 3.496451213764926*^9,
3.496528833243797*^9, {3.4975777080419827`*^9, 3.4975777244120054`*^9}, {
3.4975778737222147`*^9, 3.4975778945722437`*^9}, {3.4976396822792068`*^9,
3.49763968986082*^9}, {3.497639771433363*^9, 3.49763978104298*^9}, {
3.4976638984111347`*^9, 3.4976639153215647`*^9}, {3.4976645939383564`*^9,
3.497664598805565*^9}, {3.4976646480080514`*^9, 3.4976646992229414`*^9}, {
3.4976647966763124`*^9, 3.497664832415975*^9}, 3.497664903037299*^9, {
3.4986779242986293`*^9, 3.498677947778662*^9}, {3.499179738750054*^9,
3.499179740902858*^9}, {3.499213316063504*^9, 3.4992133345435305`*^9}, {
3.499358051967739*^9, 3.4993580717017736`*^9}, {3.4993592718267775`*^9,
3.4993592794067883`*^9}, {3.499363873578274*^9, 3.4993638796182823`*^9}, {
3.50031965968463*^9, 3.5003196639146357`*^9}, {3.5004320083900976`*^9,
3.5004320093321514`*^9}, {3.5013559257793446`*^9,
3.5013559257793446`*^9}, {3.5013564069000177`*^9, 3.501356418530034*^9}, {
3.5026761650200815`*^9, 3.5026762017401333`*^9}, {3.5026762588802133`*^9,
3.5026762588802133`*^9}, {3.5026784726933126`*^9,
3.5026784726933126`*^9}, {3.5027658552205725`*^9,
3.5027658552205725`*^9}, {3.5027672224669743`*^9,
3.5027672224669743`*^9}, {3.504028644986937*^9, 3.5040286460633388`*^9},
3.504031871520604*^9, {3.5042969469757376`*^9, 3.504296966725765*^9},
3.5043107598680983`*^9, {3.504747625602626*^9, 3.5047476267926273`*^9}, {
3.5051010704066515`*^9, 3.505101092536682*^9}, {3.5094730728464303`*^9,
3.5094730728464303`*^9}, {3.5095545822823973`*^9,
3.5095545998824224`*^9}, {3.5101727293810644`*^9,
3.5101727293810644`*^9}, {3.5101793585079556`*^9,
3.5101793589291563`*^9}, {3.5117212591249695`*^9,
3.5117212591249695`*^9}, {3.5121869358089046`*^9, 3.512186937088107*^9},
3.5132794143763943`*^9, {3.5132798091269464`*^9, 3.5132798091269464`*^9}, {
3.5132937204487925`*^9, 3.51329373291881*^9}, {3.513708063040167*^9,
3.513708085831807*^9}, {3.546818725320667*^9, 3.5468187253306665`*^9}, {
3.546818923110944*^9, 3.546818923110944*^9}, {3.5468198049321785`*^9,
3.5468198049321785`*^9}, {3.546819845442235*^9, 3.546819845442235*^9}, {
3.546820459793095*^9, 3.546820459793095*^9}, {3.546822301565674*^9,
3.546822301565674*^9}, {3.5468259256607475`*^9, 3.54682592784075*^9}, {
3.5468266085117035`*^9, 3.5468266085117035`*^9}, {3.5481755690318127`*^9,
3.5481755690318127`*^9}, {3.563043358927075*^9, 3.563043359127075*^9}, {
3.583805726657716*^9, 3.583805726657716*^9}, {3.60635276855241*^9,
3.60635276855241*^9}, {3.6063536490736427`*^9, 3.6063536490736427`*^9}, {
3.60640686451569*^9, 3.6064068645256896`*^9}, {3.6069297715874243`*^9,
3.6069297719374247`*^9}, {3.610049465317461*^9, 3.610049465317461*^9}, {
3.6101603846659827`*^9, 3.6101603846659827`*^9}, {3.623792190803851*^9,
3.623792190803851*^9}, {3.6237923394789133`*^9, 3.6237923394789133`*^9}, {
3.6237925181254272`*^9, 3.6237925181254272`*^9}, {3.623860820813846*^9,
3.623860820813846*^9}, {3.6238788505491676`*^9, 3.6238788514091687`*^9}, {
3.6240409126547723`*^9, 3.6240409126547723`*^9}, {3.624042275470089*^9,
3.624042275470089*^9}, {3.624043307805746*^9, 3.624043307805746*^9}, {
3.624044615993786*^9, 3.624044622093794*^9}, {3.6240461067262774`*^9,
3.6240461067262774`*^9}, {3.624046387342676*^9, 3.624046387342676*^9}, {
3.6240562380922074`*^9, 3.6240562380922074`*^9}, {3.624056700242854*^9,
3.624056700482855*^9}, {3.6260234527125473`*^9, 3.6260234527125473`*^9}, {
3.6262094883450565`*^9, 3.6262095054134865`*^9}, {3.6262286517806315`*^9,
3.6262286517806315`*^9}, {3.6301674776771955`*^9,
3.6301674776771955`*^9}, {3.6301678385306363`*^9,
3.6301678385306363`*^9}, {3.6642984453190947`*^9, 3.6642984462161465`*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"g", " ",
RowBox[{"Cot", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}], "p"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"c", "+",
RowBox[{"d", " ",
RowBox[{"Tan", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
SuperscriptBox["g",
RowBox[{"m", "+", "n"}]]}]}],
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"g", " ",
RowBox[{"Cot", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}], ")"}],
RowBox[{"p", "-", "m", "-", "n"}]], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"b", "+",
RowBox[{"a", " ",
RowBox[{"Cot", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", "+",
RowBox[{"c", " ",
RowBox[{"Cot", "[",
RowBox[{"e", "+",
RowBox[{"f", " ", "x"}]}], "]"}]}]}], ")"}], "n"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, {3.496441851501421*^9,